home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / string / nsTDependentSubstring.h < prev    next >
C/C++ Source or Header  |  2006-05-08  |  5KB  |  151 lines

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* vim:set ts=2 sw=2 sts=2 et cindent: */
  3. /* ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is Mozilla.
  17.  *
  18.  * The Initial Developer of the Original Code is IBM Corporation.
  19.  * Portions created by IBM Corporation are Copyright (C) 2003
  20.  * IBM Corporation. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Scott Collins <scc@mozilla.org> (original author)
  24.  *   Darin Fisher <darin@meer.net>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40.  
  41.   /**
  42.    * nsTDependentSubstring_CharT
  43.    */
  44. class nsTDependentSubstring_CharT : public nsTSubstring_CharT
  45.   {
  46.     public:
  47.  
  48.       typedef nsTDependentSubstring_CharT    self_type;
  49.  
  50.     public:
  51.  
  52. #ifdef MOZ_V1_STRING_ABI
  53.       NS_COM void Rebind( const abstract_string_type&, PRUint32 startPos, PRUint32 length = size_type(-1) );
  54. #endif
  55.       NS_COM void Rebind( const substring_type&, PRUint32 startPos, PRUint32 length = size_type(-1) );
  56.  
  57.       NS_COM void Rebind( const char_type* start, const char_type* end );
  58.  
  59. #ifdef MOZ_V1_STRING_ABI
  60.       nsTDependentSubstring_CharT( const abstract_string_type& str, PRUint32 startPos, PRUint32 length = size_type(-1) )
  61.         : substring_type()
  62.         {
  63.           Rebind(str, startPos, length);
  64.         }
  65. #endif
  66.  
  67.       nsTDependentSubstring_CharT( const substring_type& str, PRUint32 startPos, PRUint32 length = size_type(-1) )
  68.         : substring_type()
  69.         {
  70.           Rebind(str, startPos, length);
  71.         }
  72.  
  73.       nsTDependentSubstring_CharT( const char_type* start, const char_type* end )
  74.         : substring_type(NS_CONST_CAST(char_type*, start), end - start, F_NONE) {}
  75.  
  76.       nsTDependentSubstring_CharT( const const_iterator& start, const const_iterator& end )
  77.         : substring_type(NS_CONST_CAST(char_type*, start.get()), end.get() - start.get(), F_NONE) {}
  78.  
  79.       // Create a nsTDependentSubstring to be bound later
  80.       nsTDependentSubstring_CharT()
  81.         : substring_type() {}
  82.  
  83.       // auto-generated copy-constructor OK (XXX really?? what about base class copy-ctor?)
  84.  
  85.     private:
  86.         // NOT USED
  87.       void operator=( const self_type& );        // we're immutable, you can't assign into a substring
  88.   };
  89.  
  90. #ifdef MOZ_V1_STRING_ABI
  91. inline
  92. const nsTDependentSubstring_CharT
  93. Substring( const nsTAString_CharT& str, PRUint32 startPos, PRUint32 length = PRUint32(-1) )
  94.   {
  95.     return nsTDependentSubstring_CharT(str, startPos, length);
  96.   }
  97. #endif
  98.  
  99. inline
  100. const nsTDependentSubstring_CharT
  101. Substring( const nsTSubstring_CharT& str, PRUint32 startPos, PRUint32 length = PRUint32(-1) )
  102.   {
  103.     return nsTDependentSubstring_CharT(str, startPos, length);
  104.   }
  105.  
  106. inline
  107. const nsTDependentSubstring_CharT
  108. Substring( const nsReadingIterator<CharT>& start, const nsReadingIterator<CharT>& end )
  109.   {
  110.     return nsTDependentSubstring_CharT(start.get(), end.get());
  111.   }
  112.  
  113. inline
  114. const nsTDependentSubstring_CharT
  115. Substring( const CharT* start, const CharT* end )
  116.   {
  117.     return nsTDependentSubstring_CharT(start, end);
  118.   }
  119.  
  120. #ifdef MOZ_V1_STRING_ABI
  121. inline
  122. const nsTDependentSubstring_CharT
  123. StringHead( const nsTAString_CharT& str, PRUint32 count )
  124.   {
  125.     return nsTDependentSubstring_CharT(str, 0, count);
  126.   }
  127. #endif
  128.  
  129. inline
  130. const nsTDependentSubstring_CharT
  131. StringHead( const nsTSubstring_CharT& str, PRUint32 count )
  132.   {
  133.     return nsTDependentSubstring_CharT(str, 0, count);
  134.   }
  135.  
  136. #ifdef MOZ_V1_STRING_ABI
  137. inline
  138. const nsTDependentSubstring_CharT
  139. StringTail( const nsTAString_CharT& str, PRUint32 count )
  140.   {
  141.     return nsTDependentSubstring_CharT(str, str.Length() - count, count);
  142.   }
  143. #endif
  144.  
  145. inline
  146. const nsTDependentSubstring_CharT
  147. StringTail( const nsTSubstring_CharT& str, PRUint32 count )
  148.   {
  149.     return nsTDependentSubstring_CharT(str, str.Length() - count, count);
  150.   }
  151.